From 6c4e0886202e2a5790a771306f844168d4687440 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 12 Feb 2019 12:40:17 -0500 Subject: [PATCH] resources: Include more icon directories We are going to include all the icons that are used by gtk itself. Prepare for that by including the necessary subdirectories from the icon theme. --- gtk/gen-gtk-gresources-xml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gen-gtk-gresources-xml.py b/gtk/gen-gtk-gresources-xml.py index 13c60bdeb7..96a52b3e1f 100644 --- a/gtk/gen-gtk-gresources-xml.py +++ b/gtk/gen-gtk-gresources-xml.py @@ -62,7 +62,7 @@ for f in get_files('ui', '.ui'): xml += '\n' for s in ['16x16', '24x24', '32x32', '48x48', 'scalable']: - for c in ['categories', 'status']: + for c in ['actions', 'categories', 'emblems', 'emotes', 'devices', 'mimetypes', 'places', 'status']: icons_dir = 'icons/{0}/{1}'.format(s,c) if os.path.exists(os.path.join(srcdir,icons_dir)): for f in get_files(icons_dir, '.png'): -- 2.30.2